fs: Makefile: Add fs.c under SPL for fs_loader
authorKeerthy <[email protected]>
Mon, 5 Nov 2018 06:04:52 +0000 (11:34 +0530)
committerTom Rini <[email protected]>
Fri, 16 Nov 2018 21:52:00 +0000 (16:52 -0500)
Add fs.c under SPL as well as it is needed for fs_loader

Signed-off-by: Keerthy <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
[trini: Add as obj-$(CONFIG_FS_LOADER) for non-SPL_FRAMEWORK builds]
Signed-off-by: Tom Rini <[email protected]>
fs/Makefile

index bad0c2cc33e9f632da7f1ca22178404f0ef1c7af..f21cd23f033b52bc0e9fb3b7d13b17ced32d85a7 100644 (file)
@@ -5,6 +5,7 @@
 # Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
 
 ifdef CONFIG_SPL_BUILD
+obj-$(CONFIG_FS_LOADER) += fs.o
 obj-$(CONFIG_SPL_FAT_SUPPORT) += fat/
 obj-$(CONFIG_SPL_EXT_SUPPORT) += ext4/
 else